home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Libraries / VideoToolbox 94.11.17 / Advice next >
Encoding:
Text File  |  1994-11-17  |  29.8 KB  |  407 lines  |  [TEXT/ttxt]

  1. VideoToolbox:Advice
  2. November 17, 1994
  3.  
  4. Advice to beginners,
  5.  
  6. If you want to do vision experiments on your Macintosh computer, and haven’t programmed a Mac before, there are various things you should get for yourself. I’ve listed what I consider essential. The stuff I use. There are lots of baby books that hold your hand while you learn, but the ones that I’ve looked at weren’t helpful for setting up vision experiments. They’re oriented towards producing Mac-like applications with the right look and feel, which is unimportant when the experimenter is the only person that will ever run the program. Be warned that the bible, Inside Macintosh, is intimidating at first. The classic comment about Inside Mac is that you have to have read the rest to understand any part. Fortunately, the new edition, called the New Inside Macintosh is much more readily assimilable. Mac programming is tough going at first, but I’ve come to like it, as the Apple routines are generally intelligent solutions to complicated problems. Anyway, by looking at the sources for the various demos in the VideoToolbox you should be able to get going much more quickly than I did. Good luck. -Denis Pelli
  7.  
  8. At this point the entire videotoolbox, including all demos, runs native on PowerPC, and it's very fast. I'm very happy with the PowerPC 6100/60AV ($2,000 academic) and the Metrowerks CodeWarrior Gold C compiler ($100 academic). I see little point in spending more money for the faster PowerPC's since the increased cost is far in excess of the speed increase, and it seems silly to invest in NuBus slots since the future clearly belongs to PCI slots. 
  9.  
  10. If you like this file, you may also want to look at a some FAQ ("frequently asked questions") files from the Mac programming section of UseNet. 
  11. ftp://rtfm.mit.edu/pub/usenet/news.answers/macintosh/programming-faq
  12. ftp://sumex-aim.stanford.edu/info-mac/dev/info/beginning-mac-programming.txt
  13. ftp://sumex-aim.stanford.edu/info-mac/dev/info/csm-programmer-faq.txt
  14.  
  15. NOTE: the archive addresses, above and below, e.g. "ftp://...", are in a standard format called "URL" (Uniform Resource Locator) that most internet programs now prefer. If you're going to be downloading stuff, I highly recommend that you begin by getting Anarchie, which is currently the handiest ftp downloader:
  16. ftp://ftp.utexas.edu/pub/mac/tcpip/anarchie-131.hqx
  17.  
  18. ESSENTIAL BOOKS AND SOFTWARE:
  19.  
  20. The C Programming Language, Second Edition
  21. by Brian Kernighan and Dennis Ritchie, Prentice Hall, 1988
  22. This book describes the new Standard C, which most commercial compilers conform to.
  23.  
  24. Power Macintosh Programming Starter Kit
  25. by Tom Thompson, Hayden Books, 1994
  26. "A good introduction to MetroWerk's CodeWarrior, the other best programming environment for the mac, the only one to use if you're building PPC code, and my current favorite. The enclosed CD has a limited version of CodeWarrior (you can only work on the projects included in the disc - can't create new ones), and example code. Covers a lot of toolbox issues that are not explored in other introductory books and the PPC architecture in detail. Assumes working knowledge of C, and the toolbox." (Book review posted on cwarrior@netcom.com by nick@pitt.edu). 
  27.  
  28. THINK C
  29. A C compiler and programming environment (combined editor, linker, librarian, loader) for 680x0 Macintoshes only. It’s very good, but it seems that Symantec is dropping it (doing maintenance releases only) in favor of their C++. For more money you can get Symantec C++, which includes THINK C 7 and Apple's universal headers as part of the package. The VideoToolbox is pure C (with a couple bits of assembly), and makes no use of C++. The upgrade from THINK C 6 to 7 is free, but doesn't include the universal headers.
  30.    Version 7 is hardly changed from version 6, basically a slight enhancement of the user interface of the Symantec Project Manager, and fixing a few bugs in the THINK C compiler. (There are a few extra things--AppleScript support and Apple's Universal Headers--that are useful to THINK C users, but which you'll get only if you pay for the full Symantec C++ 7 package.) In a pinch, you can use THINK C 5, but the upgrade from 5 to 7 is inexpensive and improves the user interface significantly. It appears that Symantec is basically dropping THINK C, since it hasn't changed (significantly) since version 5, and since they haven't announced any plans to port it to the PowerPC. (I've also heard that none of the authors work for them any longer.) Symantec is concentrating on C++ (which is based on Zortech C++, not THINK C). 
  31. Symantec C++ (including THINK C 7) $499
  32. THINK C 6 $299
  33. Symantec Corporation
  34. 10201 Torre Ave
  35. Cupertino, CA 95014
  36. (800) 800-1438 fax
  37. (800) 441-7234
  38. You can download Symantec's updates from:
  39. ftp://devtools.symantec.com/DTS Server Drive /ftp/Macintosh/Updates/DevTools/ v7.0.Patch.READ.ME
  40. ftp://devtools.symantec.com/DTS Server Drive /ftp/Macintosh/Updates/DevTools/SymThCv6.0->v7full.sea.Hqx
  41. ftp://devtools.symantec.com/DTS Server Drive /ftp/Macintosh/Updates/DevTools/SC++_EDS_7.0.4.sea.hqx
  42. ftp://grind.isca.uiowa.edu/mac/infomac/dev/think-c-70-patch-readme.txt
  43. ftp://grind.isca.uiowa.edu/mac/infomac/dev/think-c-60-to-70-full-updt.sea
  44. ftp://grind.isca.uiowa.edu/mac/infomac/dev/symantec-cpp-eds-703-updt.sea
  45. ftp://ftp.hawaii.edu:mirrors/info-mac/dev/think-c-70-patch-readme.txt
  46. ftp://ftp.hawaii.edu:mirrors/info-mac/dev/think-c-60-to-70-full-updt.hqx
  47. ftp://ftp.hawaii.edu:mirrors/info-mac/dev/symantec-cpp-eds-703-updt.hqx
  48.  
  49. Metrowerks CodeWarrior C Compiler on CD-ROM
  50. Until now the main alternative to THINK C has been Apple’s MPW C, which is slow, and clumsy, at least in comparison to THINK C. (The only thing I use MPW for is CompareFiles.) However, Metrowerks CodeWarrior C compiler, first released in January '94, is now at version 4.5, and gets rave reviews. The Gold version supports both 680x0 and PowerPC. They copied most of what Symantec did right, and then added their own improvements. (See comments in the VideoToolbox "Read me" document.) There are two versions. Bronze $99 generates 680x0 code only; Gold $399 ($99 academic) generates both  680x0 and PowerPC code. 
  51.      Metrowerks CodeWarrior C is less than a year old; the first beta was released in January, 1994. It's already become very popular and is quite polished. There are some cosmetic console problems, which are quite tolerable, and which I'm confident will be fixed in version CW5, which is promised for January, 1995. At present, assignment of structs larger than 32 KB doesn't work (Bug No. BR4516). (The manual says, incorrectly, that structs cannot exceed 32KB, but the restriction was in fact eliminated in version CW4.) The long double type is supposed to be 16 byte, but is actually 8 byte (like double), making it incompatible with the long double math library. The built-in console prints returns as linefeeds (Bug No. T509). I sent a note explaining how and why MPW and THINK C deal with '\r' and '\n', and the pros and cons of the two alternative ways that CodeWarrior might deal with them without losing information as it presently does by mapping both to the same character (Bug No. T509). When the program asks for input from stdin, the user must manually select the console window if it isn't already frontmost, unless your program does it for the user, e.g. by calling SelectWindow(__SIOUXtextWindow). iscntrl(0) returns 0 but should return 1 (Bug No. BR4415). CodeWarrior does not recognize the "%#s" printf format used by MPW and THINK C to print pascal strings, so you have to convert your string to C style before printing it.
  52.      Thus far Metrowerks has been very responsive in accepting all my bug reports (issuing bug numbers and promises to fix) and suggestions (which they forwarded to engineering with no promises). Hopefully these seeds will grow up into fixs. Unfortunately Metrowerks doesn't publish a bug list. The following bugs which I found in version CW4 were fixed in version CW4.5. The compiler generated bad code for the assignment a[i][j][k][!m]=1 (Bug No. BR4183). Enum char arguments failed to be promoted (to int) when the corresponding parameter was untyped (e.g. in printf) (Bug No. T517). In the 2-byte-int version of the Standard C library, the functions memset and calloc crashed if asked to zero more than 64KB (Reference Nos. ES7266 and ES7268). The console failed to print characters with ascii codes higher than 127 (Bug No. T467), and crashed if asked to backspace '/b' beyond the left margin (Bug No. T513).
  53. CodeWarrior
  54. Metrowerks Inc.
  55. The Trimex Building, Route 11, Mooers, NY  12958 USA
  56. (514) 747-5999 voice
  57. (514) 747-2822 fax
  58. sales@metrowerks.com
  59. EDUCATIONAL PRICES:
  60. Gold    $99
  61. $15 shipping and handling for US orders. You must fax BookMasters proof that you are either a student or officially affilliated with a University. 
  62. BookMasters
  63. 1-800-247-6553
  64. (419) 281-6883 fax
  65. Distributed in the United Kingdom by Full Moon Software
  66. 0727 844232 and 0628 660242
  67. 0727 856139 fax
  68. cw.sales@ctalk.exnet.com
  69. Updates to CodeWarrior are posted on:
  70. ftp://sumex-aim.stanford.edu/info-mac/dev/
  71. http://www.iquest.com/~fairgate
  72.  
  73. MPW Pro
  74. (Macintosh Programmer's Workbench)
  75. $495  ($195 to upgrade from MPW)
  76. APDA (address appears at end of this document)
  77. This is a new package from Apple, providing a complete development environment (C, Pascal, and Assembler; 68k and PowerPC) on one CD-ROM. Apparently it's the same CD-ROM that you would get by subscribing to ETO (minus Symantec C++), without the printed manuals. Most people find MPW slow and clumsy, and prefer CodeWarrior or THINK C. However, Apple includes a bunch of pre-release tools on their ETO disks that might be handy.
  78.  
  79. Essential Tools and Objects CD-ROM (also called “ETO”)
  80. $1,095 for first year, $400/year thereafter. ($300 credit for owners of MPW or MPW Pro.)
  81. APDA
  82. I don’t subscribe to this--it seems too expensive--but you may want to. It’s updated 3 times a year and has the latest versions of Apple’s development tools, MPW, C, etc. It includes MPW Pro, Symantec C++, and 21 printed manuals. Doesn't include the Developer Mailings. (The important difference between MPW Pro and ETO is that ETO is a subscription so they keep sending you the latest disk, 3 times a year, whereas you buy MPW Pro once, no updates. I don't understand why the price structure is so needlessly confusing.)
  83.  
  84. THINK Reference 2
  85. From Symantec. An online reference manual summarizing most of the information in the Inside Mac books, volumes I-VI. Highly recommended. $129
  86. ftp://devtools.symantec.com/DTS Server Drive /ftp/Macintosh/Updates/DevTools/THINK-Ref-2.0.1-Updater.sit
  87.  
  88. Numerical Recipes In C Set for Macintosh, 2nd ed. 
  89. (textbook, example book, and disk) $90
  90. Useful book and mathematical library in source form. You can read the code, understand what’s going on, and modify it if necessary. From:
  91. Cambridge University Press
  92. 40 West 20th Street
  93. New York, NY 10010-4211
  94. (800)-431-1580
  95. 914-937-9600
  96.  
  97. New Inside Macintosh: Imaging with QuickDraw, Advanced Color Imaging (not yet released), Memory, Processes, ...
  98. Designing Cards and Drivers, 3rd edition
  99. (OBSOLETE: Inside Macintosh: Volumes I to VI, and X-Reference)
  100. from:
  101. Addison-Wesley
  102. (800)-447-2226
  103. or APDA
  104. You’ll need these books, especially "Imaging with QuickDraw". The new edition is significantly easier to use than the original and includes examples in C, not just Pascal. (You'll still need Inside Mac VI until Apple releases "Advanced Color Imaging".)
  105.  
  106. MAGAZINES AND CATALOGS:
  107.  
  108. MacWEEK
  109. Customer Service Department
  110. P.O. Box 5821
  111. Cherry Hill, NJ 08034
  112. (609)-428-5000
  113. Try to get a free subscription.
  114.  
  115. MacTech Magazine
  116. PO Box 250055
  117. Los Angeles, CA 90025-9555
  118. 310-575-4343
  119. 310-575-0925 fax
  120. custservice@xplain.com
  121. The only Mac magazine for programmers.
  122.  
  123. TidBITS
  124. A free weekly email newsletter about Macintosh software and hardware published by Adam and Tonya Engst. To subscribe send email to info@tidbits.com
  125.  
  126. Information Alley
  127. Apple's free email newsletter about Macintosh, published twice a month. To subscribe send message "SUBSCRIBE infoalley" to listproc@spock.austin.apple.com with subject "Information Alley". Omit the quotes.
  128.  
  129. develop: The Apple Technical Journal
  130. $27 in US, $47 outside US. 
  131. APDA (address appears at end of this document)
  132. The develop magazine has four issues per year. It has lots of examples and helpful in-depth explanations. I've learned a lot from the magazine. The accompanying CD includes useful documentation: Inside Mac and Tech Notes.
  133.  
  134. Subscription to the Developer Mailing. Each month you receive a CD. $250/year plus shipping
  135. APDA
  136. These CDs are a useful reference, including documentation and sample code, for anyone developing Mac software. 
  137.  
  138. ONLINE SERVICES:
  139.  
  140. Who can answer your Macintosh programming question? You can try posting it on UseNet or Compuserve. Somebody knowledgeable might jump in. (Apple engineers often participate in UseNet, rarely in CompuServe.) If you sell a commercial Mac product you may qualify to become an Apple Partner. For $1,500/year Apple engineers will answer your questions by email, provided you've already consulted the relevant manuals.
  141.  
  142. UseNet
  143. The comp.sys.mac.programming UseNet news group has knowledgeable active discussion. Experts at Apple often jump in with helpful answers to thorny questions. You can participate in UseNet from your your Mac using telnet (NCSA Telnet and MacIP are both free) to log into a local unix system. Or you might use Nuntius (available by ftp from the Info-Mac archive) if you can get tcp/ip access to a net news server.
  144.  
  145. CompuServe Information Service
  146. P.O. Box 20212
  147. Columbus, OH 43220
  148. (800)-848-8199
  149. If you can’t join UseNet, then you may want to join CompuServe, to follow the discussions and post your seemingly insoluble Macintosh problems on the bulletin boards, MacPro, MacDev, or Symantec:THINK C, to get free advice from experts. Buy the program Navigator from CompuServe, as it makes CompuServe much easier to use. You’ll need a modem.
  150.  
  151. AppleLink
  152. (408) 974-3309
  153. ALINK.MGMT@applelink.apple.com
  154. AppleLink is Apple’s bulletin board and email system. It provides some system software updates and technical information. Most companies that make Macintosh products have AppleLink accounts, and you can use the online directory to get their email addresses. You’ll need a modem.
  155.  
  156. Anyone can submit a bug report to APPLE.BUGS@Applelink.Apple.com. They prefer, but don’t require, a certain format that is produced automatically by a hypercard stack called Apple Bug Reporter, which can be downloaded from:
  157. ftp://ftp.apple.com/dts/mac/bugs/
  158.  
  159. SOFTWARE ARCHIVES ACCESSIBLE THROUGH THE INTERNET:
  160.  
  161. The Providers of Commercial Internet Access (POCIA) Directory contains hundreds of entries for Internet providers, which include addresses, telephone numbers, email addresses, and pricing. It is indexed by area code (for the U.S. and Canada) and by country (for the rest of the world). POCIA is available at the following Web and FTP sites: (Courtesy TidBITS)
  162. http://www.teleport.com/~cci/
  163. ftp://ftp.teleport.com/vendors/cci/pocia/pocia.txt
  164.  
  165. Mosaic for the Macintosh, National Center for Supercomputer Applications in Urbana, Illinois. A general purpose user interface to the internet for browsing and downloading.
  166. ftp://ftp.tidbits.com/pub/tidbits/tisk/tcp/ncsa-mosaic-20a17-ppc.hqx
  167. ftp://ftp.tidbits.com/pub/tidbits/tisk/tcp/ncsa-mosaic-20a17.hqx
  168.  
  169. New soon-to-be-commercial program by the developers of Mosaic.
  170. http://mosaic.mcom.com/
  171. ftp://ftp.digital.com/pub/net/infosys/Mosaic-Comm/Netscape/mac/
  172.  
  173. Fetch, from Dartmouth, is an old but still handy program for downloading by ftp.
  174. ftp://ftp.tidbits.com/pub/tidbits/tisk/tcp/fetch-212.hqx
  175.  
  176. InterNews, from Dartmouth, is popular program for accessing UsetNet news.
  177. ftp://ftp.tidbits.com/pub/tidbits/tisk/tcp/inter-news-104.hqx
  178.  
  179. "Anarchie" is a great new program that makes it easy to find and download software available on public internet sites. You tell it the name (possibly incomplete) of the program you want. It consults an archie server and tells you from which sites it's available (with dates and sizes) and you can just double click any line to download the file. Here are two sites from which you can download Anarchie:
  180. ftp://ftp.utexas.edu/pub/mac/tcpip/anarchie-131.hqx
  181. ftp://ftp.tidbits.com/pub/tidbits/tisk/mactcp/ftp/anarchie-131.hqx
  182.  
  183. The Internet Starter Kit for Macintosh, 2nd edition, by Adam C. Engst.
  184. This book includes a free disk that has MacTCP and lots of other important utilities for accessing the Internet.
  185. Published by Hayden Books. 
  186. $29.95 USA $37.95 Canada.
  187. Hayden Books
  188. 201 West 103rd Street
  189. Indianapolis, IN 46290 USA
  190. 800/428-5331 orders
  191. 317/581-3500 orders
  192. 800/448-3804 fax
  193. 317-581-3550 fax
  194. orders@hayden.com
  195.  
  196. FTP is a file transfer protocol used to transfer files across the Internet. FTP programs typically have very rudimentary user interfaces. Some of the bigger ftp servers are now also Gopher servers. Gopher (developed at University of Minnesota, originally for a campus-wide information server)  is sort of a superset of ftp that provides a quite good user interface and allows access to a wide variety of Internet resources. Public ftp servers require that you log in as “anonymous and will accept any password, but it is considered a courtesy to supply your electronic address as the password. If for some reason you can’t use ftp or gopher, some of the sites will help you out by allowing you to request transmission of files to you by email.
  197.  
  198. There are two ways to use ftp from your Mac. The traditional, indirect, approach is to remotely log into a mainframe (preferably one running unix), use its ftp facilities to move the file to it, and then download the file from it. The modern, direct, approach requires that your AppleTalk network have a gateway to the Internet, so that you can run an ftp program on your Mac (provided you have Apple’s MacTCP init, available from APDA; many universities have site licenses). I recommend Anarchie or TurboGopher for anonymous ftp downloading and Fetch 2.1 for general ftp uploading and downloading. Both are free from the Info-Mac archive.
  199.  
  200. Info-Mac archives
  201. ftp://sumex-aim.stanford.edu/info-mac/
  202. gopher: Info-Mac Archives
  203. email: send a query to Info-Mac-Request@sumex-aim.stanford.edu
  204. (The VideoToolbox is in /info-mac/Development/SourceCode/) This is the largest collection of public domain Mac software. Unfortunately in 1994 user demand has overwhelmed the resources and it is now very difficult to access. There are many "mirror" sites all over the world that keep more-or-less up-to-date copies of Info-Mac and they're usually much easier to access. Here are a few that you might try:
  205. ftp://amug.org/pub/ftp1/info-mac/
  206. ftp://wuarchive.wustl.edu/systems/mac/info-mac/
  207. ftp://src.doc.ic.ac.uk/packages/mac/info-mac/
  208.  
  209. MacPsych archives
  210. ftp://ftp.stolaf.edu/pub/macpsych/
  211. gopher://gopher.stolaf.edu:70/11/Internet%20Resources/St.%20Olaf%20Sponsored%20Mailing%20Lists/MacPsych
  212. email: send a query to macpsych-request@stolaf.edu
  213.  
  214. Alternative Collegiate Computer Association of New Mexico State University. Contains almost all freely distributable software mentioned in the FAQ lists for comp.sys.mac.misc, comp.sys.mac.system, and comp.sys.mac.apps. 
  215. ftp://rever.nmsu.edu/pub/macfaq/
  216. The following Mosaic page is intended to serve as a single entry point to all Macintosh resources on the Web.  
  217. http://rever.nmsu.edu/~elharo/faq/generalfaq.html
  218.  
  219. Apple archives: (list courtesy of TidBITS)
  220. http://www.info.apple.com/
  221. http://www.support.apple.com/
  222. ftp://ftp.support.apple.com/pub/Apple SW Updates/Macintosh/
  223. gopher://ftp.support.apple.com/11/pub/
  224. ftp://ftp.apple.com/dts/mac/
  225. ftp://seeding.apple.com/
  226. gopher://info.hed.apple.com/
  227. http://www.apple.com/
  228. ftp://ftp.austin.apple.com/Apple.Support.Area/
  229. ftp://aux.support.apple.com/
  230. gopher://spinaltap.micro.umn.edu/11/computer/Apple/
  231. ftp://abs.apple.com/abs/
  232. ftp://ftp.cambridge.apple.com/pub/
  233. ftp://atg.apple.com/pub/
  234.  
  235. David Brainard (brainard@condor.psych.ucsb.edu) has created interface files that make it easy to use the VideoToolbox from within MATLAB. They're available by anonymous ftp. Also see VideoToolboxMATLAB.c in VideoToolboxSources.
  236. ftp://lifesci.ucsb.edu/pub/mac/brainard/Toolboxes.sea.hqx
  237. ftp://lifesci.ucsb.edu/pub/mac/brainard/Sources.sea.hqx
  238.  
  239. University of Texas Macintosh Archive
  240. ftp://ftp.utexas.edu/pub/mac/
  241. http://wwwhost.ots.utexas.edu/mac/main.html
  242.  
  243. Adam Engst, the author of The Internet Starter Kit for Macintosh (above) also maintains a Mac archive
  244. ftp://ftp.tidbits.com/pub/tidbits/tisk/
  245. http://www.tidbits.com/tidbits/index.html
  246.  
  247. SOFTWARE ARCHIVES ON CD-ROM:
  248.  
  249. Info-Mac CD-ROM II (May '93) $49.95 plus shipping.
  250. A May ‘93 snapshot of the info-mac archive on a CD-ROM containing about 600 MB. (Includes the February 1993 edition of the VideoToolbox.)
  251. Pacific HiTech, Inc.
  252. 4760 Highland Drive, Suite 204
  253. Salt Lake City, Utah 84124
  254. 800-765-8369 (orders only)
  255. 801-278-2042
  256. 801-278-2666 (fax)
  257. 71175.3152@compuserve.com
  258.  
  259. Apprentice $35 (includes shipping in US and Canada)
  260. CD-ROM of 450 MB of Mac source code and utilities. 
  261. (Includes the May 1994 edition of the VideoToolbox.) 
  262. Celestin Company
  263. 1152 Hastings Avenue
  264. Port Townsend, WA  98368
  265. 800 835 5514
  266. 206 385 3767
  267. 206 385 3586 fax
  268. celestin@pt.olympus.net
  269.  
  270. EMAIL:
  271.  
  272. Your email service ought to have a gateway to Internet; complain if it doesn’t. Here’s how to send Internet mail to various commercial services when you only know the person’s service-specific address:
  273. America Online: “Adam Engst” becomes “adamengst@aol.com”.  
  274. AppleLink: “DENIS” becomes “DENIS@applelink.apple.com”. 
  275. BIX: “user” becomes “user@dcibix.das.net”.
  276. CompuServe: “1234,567” becomes “1234.567@compuserve.com”. Note: “,” becomes “.”.
  277. GEnie: “username” becomes “username@genie.geis.com”.
  278. MCI: Joe Doe 123-4567 becomes “Joe_Doe@mcimail.com” or “1234567@mcimail.com”.
  279. Prodigy: user ID “abcd12a” becomes “abcd12a@prodigy.com”
  280.  
  281. Eudora is a popular free email program. I haven't tried it but I exchange mail with mainy people who do. Eudora, an electronic mail client for Internet users. QUALCOMM Incorporated, San Diego, California.
  282. ftp://ftp.qualcomm.com/quest/mac/eudora/
  283.  
  284. HARDWARE:
  285.  
  286. In my experience a plain old (now obsolete) Mac II is fast enough for many things, but faster Macs can show bigger movies. If you’re going to synthesize images then make sure your computer has a floating point chip. So far we’ve never needed more than 8-bit color, making the obsolete Apple Toby and TFB video cards our favorites, because they work perfectly (unlike Apple’s 1992 crop of video cards--see the "Video synch" document), and they’re available for $90 from Shreve Systems (800-227-3971), but, of course, they don’t support the latest large monitors. We also like the built-in video on all of Apple’s newer computers because you can load images into them at extremely high speeds (try the demo TimeVideo), since they bypass the NuBus bottleneck. We use the mouse or keyboard to collect observer responses. We’ve bought a few Data Translation A/D boards to automate our photometry, moving the cards from machine to machine as needed, but they are probably not the best brand.
  287.  
  288. We're just starting to use a Power Mac 6100/60av. It appears to be excellent for vision research, even in emulation mode. Its university price is about $2,000, and its two built-in video ports are very fast; as fast as the fastest Quadra. We don't need any slots. If you want slots, you may want to wait to until May 1995 when Power Macs with PCI slots are scheduled to appear. The PCI bus is fast and is quickly becoming the bus of choice for Intel-based computers, so there will soon be a huge array of cards to choose from. (Making a PCI card compatible with both PowerPC and Intel processors will require a bigger "plug and play" ROM, but it seems likely that most manufacturers will take the trouble.)
  289.  
  290. You’ll want a fast CD-ROM drive, mainly to read Apple’s Developer CD-ROM disks.
  291.  
  292. You’ll need a modem to call CompuServe or AppleLink, and to dial in from home and elsewhere using AppleTalk Remote Access (ARA). 14,400 bits/s modems cost several hundred dollars, and for a bit more you can now get 28,800 b/s. (I'm happy with the 14k b/s Global Village modem in my PowerBook.) Phone lines are still expensive though, so you may want to cost-share by using a shared modem and a single phone line, in which case you'll want to devote an old Mac or buy an AppleTalk Remote Access server to connect the modem to your AppleTalk network.
  293.  
  294. APS Hyper DAT $1,399
  295. APS Technologies
  296. 6131 Deramus
  297. PO Box 4987
  298. Kansas City, MO 642120=0087
  299. (800)-354-1213
  300. 816-483-6100
  301. 816-483-3077 fax
  302. My department uses a single DAT tape drive (with compression, from APS) and the Retrospect program to backup dozens of Macs every night automatically. We’re very happy with it. Retrospect maintains a historical backup so you can go back to older versions of your data, many backups ago. Get a sufficiently large-capacity tape drive so that you can do unattended incremental backups without having to change the tape.
  303.  
  304. Moustrak Pad (large 9”x11”, blue or gray). One for each Mac. You really need this. $9
  305.  
  306. Chip Merchant
  307. 9285 Chesapeake Drive
  308. San Diego, CA 92123
  309. (619)-268-4774
  310. (619)-268-0874 fax
  311. At $30 per megabyte it’s worth buying enough memory to take your computer up to at least 8 MB. (To show movies, we've taken several of our computers up to 24 or 40 MB.) This outfit has good prices.
  312.  
  313. MONITORS:
  314. We’ve done nearly all our research using Apple’s High Resolution Monochrome monitors, which are inexpensive and adequate, though one could wish for higher luminance (100 cd/m^2 peak when new), better high voltage regulation, and dc coupling instead of dc restoration. I suspect that a color monitor might be better regulated and might be excellent used as a monochrome monitor. Use with the ISR Video Attenuator would require that you: 1. use only the green channel, or 2. build a video amplifier to drive all three channels from the single output of the video attenuator, or 3. snip two of the 75 ohm termination resistors inside the monitor and tie all three channels together.
  315.  
  316. A company called Dotronix just came out (10/94) with a high resolution (150 MHz) bright (300 cd/m^2) multisynch gray scale monitor (ASM2400 21"FS) for about $1450. Dotronix (715) 834-7785.
  317.  
  318. I know very little about color monitors, but people keep asking me to recommend one. Tom Robson of Cambridge Research Systems gave me a brochure for what appears to be a rather nice color monitor:
  319. Sony 20-inch Trinitron Multiscan GDM-2038
  320. field rate of 50 to 160 Hz
  321. about 160 cd/m^2
  322. $2,500
  323. I just bought Apple's 17" Multiscan for about $900. It's a Sony Trinitron. Peak luminance is about 100 cd/m^2. Using the Monitors control panel, you can select among several resolutions.
  324.  
  325. RECOMMENDED:
  326. (The free & shareware stuff is available from Info-Mac or CompuServe or both. You can use Anarchie to quickly search most of the world's ftp sites. To search Compuserve use their “GO MACFF” command.)
  327.  
  328. Anarchie - quickly find a file anywhere among all the world's public archives. Free.
  329. ftp://ftp.utexas.edu/pub/mac/tcpip/anarchie-131.hqx
  330. ApplWindows - INIT helps you go quickly go to any window of any application. Free.
  331. ARA Commander - streamlines your use of Appletalk Remote Access. Shareware.
  332. ATM 3.8 - Adobe Type Manager, $40 from Adobe at 800-521-1976 x4400. 
  333. Disinfectant - remove viruses. This is the best. Free.
  334. DocuComp II - compare versions of a manuscript. $50?
  335. EndNote Plus & EndLink - download references from DIALOG or Grateful Med & stick ‘em in papers
  336. Excel - massage data before plotting it.
  337. Fetch - ftp uploading and downloading. Free.
  338. File Buddy - flawlessly performs file and disk related chores. $25 shareware.
  339. Gestalt Selectors - fuller documentation of  Apple's Gestalt() trap.
  340. ftp://sumex-aim.stanford.edu/info-mac/dev/info/gestalt-selectors-XX.hqx
  341. http://www.astro.nwu.edu/lentz/mac/faqs/source/gestalt.html
  342. Grateful Med - cheaply download references from the National Library of Medicine (MEDLINE). Call 800-638-8480.
  343. Kaleidagraph or DeltaGraph Pro or CricketGraph III - plot data. 
  344. Klutz - view the contents of the clut (Color Lookup Table). Free.
  345. MacsBug - low-level debugger from Apple. Free.
  346. Mathematica - modeling.
  347. MathType - create equations for use in any word processor, especially Word. $70?
  348. MATLAB - analyze data and filter images (crude but fast). $$$
  349. MODE32 - allows older Macs to do 32-bit addressing. Free.
  350. ftp://mrcnext.cso.uiuc.edu/pub/info-mac/cfg/mode32-75.hqx
  351. Now Up To Date - first appointment calendar (and to-do list) that I like.
  352. Now Utilities - includes Super Boomerang. Very helpful.
  353. PopChar - shows all the characters in the current font. Free.
  354. Programmer’s Key - use your keyboard’s power key to invoke the debugger. Free.
  355. QuickDEX II - like a RoloDEX, keeps addresses and phone numbers. Lightning fast.
  356. RAMDoubler - makes it appear that you have twice the RAM memory. $99 (supposedly incompatible with CodeWarrior4.5 debugger)
  357. ResEdit CODE editor - free from ftp://ftp.apple.com/dts/mac/tools/resedit/
  358. Retrospect & Retrospect Remote 10-pack - best backup program. $139 & $139
  359. SCSIProbe - mount and unmount SCSI disks. Free.
  360. Stuffit Expander  & DropStuff - free & $30 shareware
  361. ftp://ftp.netcom.com/pub/leonardr/Aladdin/DropStuff_with_EE_3.5.1_Installer.hqx
  362. ftp://ftp.netcom.com/pub/leonardr/Aladdin/StuffIt_Expander_3.5.1_Installer.hqx
  363. SuperClock! - time of day. Free.
  364. Synchronize! - merge updates of folders on different computers. $30 from Qdea.
  365. System Errors - explains all the Systems errors. Free. 
  366. TurboGopher - gopher and anonymous ftp downloading. Free. 
  367. Vantage - word (un)wrapping and quote (un)curling. $90 from Preferred Publishers.
  368. Word - only word processor fully compatible with MathType and DocuComp.
  369.  
  370. ADDRESSES:
  371.  
  372. to buy Vantage:
  373. Preferred Publishers, Inc.
  374. 5100 Poplar Ave., Suite 617
  375. Memphis, TN 38137
  376. (800) 446-6393.
  377. (901) 683-3383
  378.  
  379. to buy MATLAB:
  380. The MathWorks, Inc.
  381. 24 Prime Park Way
  382. Natick, MA  01760
  383. Phone: 508-653-1415
  384. FAX: 508-653-2997
  385. info@mathworks.com - Sales, pricing, and general information
  386.  
  387. APDA
  388. Apple Programmers and Developers Association
  389. Apple Computer, Inc.
  390. 20525 Mariani Avenue, M/S 33G
  391. Cupertino, CA 95014-6299
  392. 1-800-282-2732 (US)
  393. 1-800-637-0029 (Canada)
  394. 716-871-6555
  395. 716-871-6511 FAX.
  396. APDA@applelink.apple.com
  397. Get an APDA catalog, since some Apple software and documentation is ONLY available from them.
  398.  
  399. Synchronize!  $29.95 plus shipping from:
  400. Qdea
  401. P. O. Box 19531
  402. St. Paul, MN  55119
  403. 612-779-0955
  404. 800-933-9558 orders
  405. D3949@APPLELINK.APPLE.COM
  406.  
  407.